home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0507 / readme.txt < prev    next >
Text File  |  1997-04-02  |  4KB  |  124 lines

  1. HTML Pro 1.2 Setup Instructions
  2. -------------------------------
  3.  
  4.  * After unzipping the archive, copy the file COMMDLG.DLL to your
  5.    \Windows\System directory. If you are asked if you wish to overwrite
  6.    the file, press 'Y' for Yes.
  7.  
  8.  * To add an icon so you can access HTML Pro directly, follow the following
  9.    directions.
  10.  
  11.     - Windows 3.11/3.1/Windows NT 3.x/Windows for Workgroups
  12.         - Click 'File', then 'New', then 'Program Group'. Create a group
  13.           for HTMLPro called 'Jaguar Development'. Ensure this group is
  14.           showing, then click 'File' then 'New' then 'Program Item.' Enter
  15.           the details for HTMLPro; filling in the filename (e.g.
  16.           c:\htmlpro\htmlp.exe) and then fill in an icon name. Then enter
  17.           the 'working directory' as c:\htmlpro, or wherever you installed
  18.           the program.
  19.  
  20.     - Windows 95, Windows NT v4 or above.
  21.         - Right-Click on the desktop, then click on 'New Shortcut'.
  22.         - Type in the path & filename for HTML Pro.
  23.         - Enter the description 'HTML Pro for Windows'
  24.         - Click 'OK.'
  25.         - To add to the start menu, right click on the start button, click
  26.           'Open', then double click on the Programs icon, then right-drag
  27.           the desktop icon you created into the Programs window. Then select
  28.           'Copy.'
  29.  
  30.  * Now, to run HTMLPro, click on the HTML Pro icon on your desktop, or in
  31.    the Jaguar Development program group. For Windows 95, you can access it
  32.    in the Start Menu.
  33.  
  34.  LAST MINUTE RELEASE NOTES
  35.  -------------------------
  36.  
  37.  * Template Programming
  38.  
  39.   The template file format is very simple. All templates are gathered
  40.   from one file, DEFAULT.TEM. This is basically just a series of HTML files
  41.   delimited by a slash '\' followed by a name, and then a line in HTML
  42.   comment format as a description. For example:
  43.  
  44.   \HTMLDoc1
  45.   <!-- A simple html doc ->
  46.   <html>
  47.   etc...
  48.   </html>
  49.   \AnotherDoc2
  50.   <!-- A second doc ->
  51.   <html>
  52.    <body etc. etc.
  53.  
  54.   Load a template and its contents are pasted into the new window. However,
  55.   should you wish to ask your user questions, you can. You can ask the user
  56.   for a string, and have the question code replaced with their example.
  57.  
  58.   The format is [?]:vv:Question[\]
  59.    (Where vv is a unique identifier between 00 and 99)
  60.  
  61.   e.g.
  62.   <A HREF="[?]:00:What is your web site's address?[\]">
  63.  
  64.   Once the question has been asked, the variable is accessible again without
  65.   re-asking the question. The format for this is as follows:
  66.  
  67.   [v]:vv
  68.  
  69.   This will replace those 6 characters with the variable's value. For example:
  70.  
  71.   Don't forget the web site; It's <a href="[v]:00">here</A>!
  72.  
  73.   You may only have ONE question and ONE variable access per line of HTML,
  74.   maximum; this needn't be a problem unless you're working in pre-formatted
  75.   HTML mode (<pre></pre>)
  76.  
  77.  * The OTHER.TAG file
  78.  
  79.   This contains user defined HTML strings, or last minute additions. The
  80.   format is
  81.  
  82.   Name,HTML_Code,Description
  83.   Name,HTML_Code,Description
  84.  
  85.   etc.
  86.  
  87.   Note that there must be NO WHITE SPACE at the end of the file! This may
  88.   cause HTMLPro to crash dramatically!
  89.  
  90.  VERSION DIFFERENCES
  91.  ===================
  92.  
  93.  Since v1.0 (December 1996 Release)
  94.  
  95.  * Added site manager to help with the management of full web sites, not just pages.
  96.  * Added the Image Map Wizard to help create Client Side Image Maps.
  97.  * Fixed 'preview in browser' bug; will prompt you to save first if you have not already 
  98.    saved.
  99.  * Changed splash screen.
  100.  * Color wizard vastly improved. New interface, now supports ready-made or custom-made schemes,
  101.    and background GIFs (JPEG support coming soon).
  102.  * Added Table Wizard
  103.  * Updated documentation
  104.  * Ironed out a few more bugs (thanks for all emails concerning these)
  105.  * Streamlined code.
  106.  
  107.  Since 0.9 (Beta Release)
  108.  
  109.  * Fixed bugs
  110.  * Added Color Wizard with basic support for colors and so forth.
  111.  * Added help HTML document.
  112.  * Added more templates.
  113.  * Document Wizard
  114.  
  115.  Since 0.1 (Concept Release)
  116.  
  117.  * Too numerous to mention here; contact JD for a full list.
  118.  
  119.  
  120.  Have Fun,
  121.  Ed
  122.  Email: ed@comports.com
  123.       
  124.